
 /* Card de eventos */
 .card-events,
 .card-discord {
     background-color: #fff;
     border-radius: 10px;
     padding: 15px;
     margin-bottom: 20px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }


 .card-events .sidebar-title,
 .card-discord .sidebar-title {
     font-size: 16px;
     font-weight: bold;
     margin-bottom: 10px;
 }

 /* Botão do Discord */
 .btn-discord {
     display: inline-block;
     padding: 8px 15px;
     border-radius: 5px;
     background-color: #5865F2;
     color: #fff;
     text-decoration: none;
     font-weight: bold;
 }


 .card-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-options-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.event-options-btn:hover {
    background: #f4f4f4;
}

.event-options-btn img {
    width: 14px;
    height: 14px;
}

.event-options-btn:focus {
    outline: none;
    box-shadow: none;
}
